home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España 17 / MacFormat 17 (Spain) / MacFormat 17.bin / DATABASE / POWER.DIR / 00023.ls < prev    next >
Encoding:
Text File  |  1996-03-14  |  357 b   |  14 lines

  1. on mouseDown
  2.   global gMakerName, gMakerNum
  3.   puppetSound("click")
  4.   updateStage()
  5.   set tmp to line the mouseLine of field "Filenames2"
  6.   set gMakerName to tmp
  7.   set gMakerNum to NameToNum(gMakerName)
  8.   if (gMakerNum = 0) or ((gMakerNum = 1) and (gMakerName <> "Arafat")) then
  9.     alert("oops! problem with name")
  10.   else
  11.     go(the frame + 1)
  12.   end if
  13. end
  14.